home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / fllab200 / inst16 / flashreg.pas < prev   
Pascal/Delphi Source File  |  1996-09-15  |  326b  |  20 lines

  1. unit Flashreg;
  2.  
  3. interface
  4.  
  5. uses
  6.     Classes, DsgnIntF,
  7.     FlashLab, ClrCycEd, ClrCycE2;
  8.  
  9. procedure Register;
  10.  
  11. implementation
  12.  
  13. procedure Register;
  14. begin
  15.     RegisterComponents('New', [TMCFlashServer, TMCFlashLabel]);
  16.     RegisterPropertyEditor(TypeInfo(TColorCycling), nil, '', TColorCyclingPropertyEditor);
  17. end;
  18.  
  19. end.
  20.